@import url(https://fonts.googleapis.com/css?family=Source+Code+Pro:400|Roboto+Condensed:400,700);

/* Plugin Container */
.datedropdown {
/*    width: 33%;
    min-width: 400px;  text-align: center;*/
    padding-top: 20px;
    display: inline-block;
    box-sizing: border-box;
   
}

.datedropdown:first-of-type {
    position: relative;
    bottom: 35px;
}

/* datedropdown Heading */
.datedropdown h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3em;
    margin: 15px 0;
    color: #4F5462;
}

.datedropdown input {
    display: block;
    margin: 0 auto 20px auto;
    width: 150px;
    padding: 8px 10px;
    border: 1px solid #CCCCCC;
    border-radius: 3px;
    background: #F2F2F2;
    text-align: center;
    font-size: 1em;
    letter-spacing: 0.02em;
    font-family: 'Poppins', sans-serif;
}

.datedropdown select {
    padding: 5px;
    background: #ffffff;
    border: 1px solid #CCCCCC;
    border-radius: 3px;
   /* margin: 0 3px;*/
}

.datedropdown select.invalid {
    color: #E9403C;
}

.datedropdown input[type="submit"] {
    margin-top: 10px;
}

.datedropdown input[type="submit"]:hover {
    cursor: pointer;
    background-color: #e5e5e5;
}

/* Code Blocks */
pre.code-wrapper {
    padding: 15px 30px;
    margin-top: 20px;
    background: #F4F6F4;
    color: #393D3F;
    text-align: left;
    border: 1px solid #DCDFDC;
    border-radius: 3px;
}

pre code {
    font-family: 'Source Code Pro', monospace, monospace;
    font-weight: 400;
    font-size: 14px;
}

/* Highlighted Code Blocks */
pre code span.highlight {
    color: #EF6F6C;
}

/* Media */
@media(max-width: 847px) {
    .header-bar h1 {
        text-align: center !important;
        width: 100%;
    }

    .header-bar nav {
        display: none;
    }

    .datedropdown:first-of-type {
        bottom: 0;
    }
}

@media(min-width: 848px) {
    .header-bar nav {
        display: block;
    }
}

.blue {
	color: #66aae6;
}